--- /dev/null
+Description: skip test failure on big endian systems.
+ The issue is known upstream and supposed to be fixed in an upcoming
+ version.
+Author: Étienne Mollier <emollier@debian.org>
+Bug: https://lists.debian.org/debian-med/2026/02/msg00018.html
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1127756#25
+Forwarded: not-needed.
+Last-Update: 2026-02-17
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- dcmtk.orig/dcmect/tests/t_roundtrip.cc
++++ dcmtk/dcmect/tests/t_roundtrip.cc
+@@ -94,6 +94,13 @@
+ return;
+ }
+
++ /* Skip that particular test on big endian due to know issue in
++ * version 3.7.0. This is going to be fixed in a future version.
++ */
++ if (gLocalByteOrder != EBO_LittleEndian) {
++ return;
++ }
++
+ // Creation
+ EctEnhancedCT* ct = create();
+ configureIOD(ct);